home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 5
/
BBS in a Box -Volume V (BBS in a Box) (April 1992).iso
/
Files
/
Prog
/
B-C
/
BINTERATIVE.
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-04-13
|
256 b
|
13 lines
|
[
TEXT/MSWD
]
program Text;
{allows user to input info in the form of characters}
const
days_in_year = 365.25;
var
entry : string[80];
begin
writeln ('What is your name please?');
readln (entry);
end.